Docker : Access to Services on Container
2017/07/30 |
If you'd like to access to services like HTTP or SSH which is running on Containers as a daemon, set like follows.
|
|
[1] | For exmaple, use a Container which has httpd. |
# start the Container and also run httpd # map the port of Host and the port of Container with [-p xxx:xxx] [root@dlp ~]# docker run -t -d -p 8081:80 srv.world/fedora_httpd /usr/sbin/httpd -D FOREGROUND
docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAME 4f75c59fd1f6 srv.world/fedora_httpd "/usr/sbin/httpd ..." 4 seconds ago Up 3 seconds 0.0.0.0:8081->80/tcp # create a test page [root@dlp ~]# docker exec 4f75c59fd1f6 /bin/bash -c 'echo "httpd on Docker Container" > /var/www/html/index.html'
# verify it works normally [root@dlp ~]# curl localhost:8081 httpd on Docker Container |